home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / mutt / me2s_pl7.zoo / mu_edit2 / util / dstring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-05  |  420 b   |  21 lines

  1. /* $Id: dstring.h,v 1.1 1992/09/06 19:31:32 mike Exp $ */
  2.  
  3. /* $Log: dstring.h,v $
  4.  * Revision 1.1  1992/09/06  19:31:32  mike
  5.  * Initial revision
  6.  *
  7.  */
  8.  
  9. /* Dynamic String header file 
  10.  * C Durland    Public Domain
  11.  */
  12.  
  13. #ifndef __DSTRING_H_INCLUDED
  14. #define __DSTRING_H_INCLUDED
  15.  
  16. typedef struct { int size; char *string; } dString;
  17.  
  18. #define get_dString(ds) (ds).string
  19.  
  20. #endif /* __DSTRING_H_INCLUDED */
  21.